Skip to main content
POST
/
api
/
v1
/
executions
/
relaunch
Triggers the creation of an identical :ref:`ref_flyteidl.admin.Execution`
curl --request POST \
  --url https://mycluster.domino.tech/api/v1/executions/relaunch \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": {
    "project": "<string>",
    "domain": "<string>",
    "name": "<string>",
    "org": "<string>"
  },
  "name": "<string>",
  "overwrite_cache": true
}
'
{
  "id": {
    "project": "<string>",
    "domain": "<string>",
    "name": "<string>",
    "org": "<string>"
  }
}

Body

application/json

Request to relaunch the referenced execution.

Request to relaunch the referenced execution.

id
Encapsulation of fields that uniquely identifies a Flyte workflow execution · object
name
string
overwrite_cache
boolean

Allows for all cached values of a workflow and its tasks to be overwritten for a single execution. If enabled, all calculations are performed even if cached results would be available, overwriting the stored data once execution finishes successfully.

Response

A successful response.

The unique identifier for a successfully created execution. If the name was not specified in the create request, this identifier will include a generated name.

id
Encapsulation of fields that uniquely identifies a Flyte workflow execution · object